home *** CD-ROM | disk | FTP | other *** search
/ Keystone Learning XML: More On Content Modeling / Keystone learning XML More on Content Modeling.iso / Sample Files / chapter 3 / NamespacesWithDefault.xml < prev    next >
Encoding:
Extensible Markup Language  |  1999-12-04  |  371 b   |  20 lines

  1. <?xml version="1.0"?>
  2.  
  3. <products xmlns="http://www.mine.com"
  4.       xmlns:theirs="http://www.theirs.com">
  5.  
  6.     <product>
  7.         <name>The Juice Tiger</name>
  8.         <price>$49.95</price>
  9.         <theirs:price>$54.95</theirs:price>
  10.     </product>
  11.  
  12.     <product>
  13.         <name>The Salad Shooter</name>
  14.         <price>$35.95</price>
  15.         <theirs:price>$38.95</theirs:price>
  16.     </product>
  17.  
  18. </products>
  19.  
  20.